void setup(){
	size(500,500);
}

void draw(){ 
	background(200);
	line(250,250,mouseX,mouseY);  
}